home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Simulation / PDP-8 Simulator / Source Code / Assembler / Test.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-13  |  302 b   |  22 lines  |  [TEXT/KAHL]

  1. #include "Global.h"
  2.  
  3. #include "Test.proto.h"
  4.  
  5. main(void)
  6.     {
  7.     pHandle aProgram;
  8.     char theFileName[] = "Adrian";
  9.     long tempPtr;
  10.     long Err;
  11.     
  12.     newProgram(&aProgram);
  13.     
  14.     copyString((*(*aProgram)->sourceCode)->name,theFileName); 
  15.     
  16.     loadSource((*aProgram)->sourceCode);
  17.     
  18.     assemble(aProgram);
  19.     exit();
  20.     }
  21.     
  22.